EPD Extension Kit for MSP430 LaunchPad
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
image_data.h
Go to the documentation of this file.
1 
34 #define USE_EPD144 0
35 #define USE_EPD200 1
36 #define USE_EPD270 2
38 /* Using which EPD size for demonstration.
39  * Change to USE_EPD270 if you are connecting with 2.7 inch EPD. USE_EPD144 for 1.44 inch. */
40 #define USE_EPD_Type USE_EPD200
42 #if(USE_EPD_Type==USE_EPD144) // array size=96*16, (128/8=16)
43  extern unsigned char const image_array_144_1[];
44  extern unsigned char const image_array_144_2[];
45 #elif(USE_EPD_Type==USE_EPD200) // array size=96*25, (200/8=25)
46  extern unsigned char const image_array_200_1[];
47  extern unsigned char const image_array_200_2[];
48 #elif(USE_EPD_Type==USE_EPD270) // array size=176*33, (264/8=33)
49  extern unsigned char const image_array_270_1[];
50  extern unsigned char const image_array_270_2[];
51 #endif